home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 7 / FM Towns Free Software Collection 7.iso / ms_dos / thmake / makefile next >
Makefile  |  1993-11-30  |  193b  |  20 lines

  1.  
  2. #
  3. #    THmake
  4. #
  5. #        By 五味
  6. #
  7.  
  8. .SUFFIXES: .asm .c .obj .exe
  9.  
  10. .obj.exe:
  11.     d:lcc -o $@ @${$#}
  12. .c.obj:
  13.     d:lcc -c $<
  14. .asm.obj:
  15.     d:tasm /m /ml $<
  16.  
  17.  
  18. THmake.exe :
  19. THmake.obj :
  20.